home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / libs / mlib / include / mbutton.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-26  |  517 b   |  18 lines

  1.  
  2. #ifndef __MBUTTON_H
  3. #define __MBUTTON_H
  4.  
  5. #define MBUTTON_ID           0x0106
  6.  
  7. class MButton : public MLabel {
  8. public:
  9.                  MButton (int x1, int y1, int x2, int y2, BYTE ALabel[], WORD AHandle, WORD AParent = HROOT);
  10.                  MButton (const RECT& ABox, BYTE ALabel[], WORD AHandle, WORD AParent = HROOT);
  11.     virtual void             Draw (void);
  12.     virtual WORD             Handler (EVENT event);
  13.     virtual inline classType isA (void) {return (MBUTTON_ID);};
  14.                 ~MButton (void);
  15. };
  16.  
  17. #endif
  18.